Adding multiple donation pages

You can create multiple versions of the Gift.aspx page by saving it under a different name and modifying the page properties. Once you have created the new page, you can add it to your Public view by modifying the Web.sitemap file. In a typical installation, the Web.sitemap file is located in the local directory for the iMIS application - c:\Program Files\ASI\iMIS\iMIS_public\Web.sitemap.

The original Web.sitemap file contains the following reference to the Gift.aspx page.

<siteMapNode title="Donate now!" navigateChild="0" roles="*" visible="true">

    <siteMapNode title="Donate now!" url="~/Core/Donations/Gift.aspx" />

</siteMapNode>

To add an additional donation page to your sitemap, open the Web.sitemap file and add a siteMapNode with a title and url specific to your new page. In this example, two .aspx pages have been added to the Web.sitemap file. The sitemap can be modified to accommodate several donation pages.

<siteMapNode title="Donate now!" navigateChild="0" roles="*" visible="true">

    <siteMapNode title="Donate now!" url="~/Core/Donations/Gift.aspx" />

    <siteMapNode title="Invest in our community!" url="~/Core/Donations/Community.aspx" />

    <siteMapNode title="Donate to some special causes!" url="~/Core/Donations/GiftWithOtherDistributions.aspx" />

</siteMapNode>